home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / netsurf / netinf02 < prev    next >
Text File  |  1994-10-25  |  590b  |  31 lines

  1. Some Real Quick Ones.
  2. ~~~~~~~~~~~~~~~~~~~~~
  3.  
  4.     * view a text file without downloading it first?
  5.         On Unix, try:  get file "|more"  [or]  get file -
  6.         On VAX, try:   get file tt:
  7.  
  8.     * view a directory using `more` in FTP?
  9.         dir . |more
  10.  
  11.     * extract .tar.Z
  12.     zcat file | tar -xf -     
  13.  
  14.     * extract .tar.z or .tar.gz or .tgz?
  15.     gzcat file | tar -xf -     
  16.  
  17.     * extract shar?            
  18.     /bin/sh file
  19.  
  20.     * compile source?        
  21.     cd to directory with Makefile
  22.     make
  23.  
  24.     * sz over a 7-bit connection?
  25.     sz -e file       
  26.  
  27.     * speed up Zmodem
  28.     sz -Z -b 
  29.  
  30.  
  31.